-
-
Notifications
You must be signed in to change notification settings - Fork 102
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Migrate to phpspec/prophecy-phpunit #178
Conversation
sebastianbergmann/phpunit#5033 changed phpunit to no longer depend on phpspec/prophecy. This results in the need to add a development dependency for phpspec/prophecy. Doing so results in a warning, since PHPUnit\Framework\TestCase::prophesize() is deprecated and will be removed in PHPUnit 10. Let's use the trait provided by phpspec/prophecy-phpunit instead. * Fixes myclabs#177
Note that phpspec/prophecy-phpunit v2.0.0 requires php ^7.3. One alternative here would be to just require phpspec/prophecy instead. But then, such support will be dropped for phpunit 10. Thoughts? |
Thanks for the PR! I would be fine dropping support for older PHP versions and require PHP 7.4+, would that work? |
It works for me, but then, would it cause any trouble for other users? If in doubt we can always just require phpspec/prophecy and delay the decision! |
Ah sorry I missed that, yeah that sounds great! |
This reverts commit e03ad06. Supporting phpspec/prophecy-phpunit at this point, would require dropping php <= 7.2 support. We can re-visit this matter once we start supporting phpunit 10.
d63f3cc
to
b95de66
Compare
I lowered the dependency version to one that should accept php 7.1 now :) |
Done in #183 |
🚀 |
sebastianbergmann/phpunit#5033 changed phpunit
to no longer depend on phpspec/prophecy. This results in the need to add
a development dependency for phpspec/prophecy. Doing so results in a
warning, since PHPUnit\Framework\TestCase::prophesize() is deprecated
and will be removed in PHPUnit 10. Let's use the trait provided by
phpspec/prophecy-phpunit instead.